[New Integrationi] Anduril Lattice#20021
Conversation
Elastic Docs Style Checker (Vale)Summary: 13 warnings, 2 suggestions found
|
| File | Line | Rule | Message |
|---|---|---|---|
| packages/anduril_lattice/_dev/build/docs/README.md | 56 | Elastic.Latinisms | Latin terms and abbreviations are a common source of confusion. Use 'for example' instead of 'e.g'. |
| packages/anduril_lattice/_dev/build/docs/README.md | 69 | Elastic.MenuArrowsBold | Use '→' to separate menu items, not '' or '='. Example: Select Manage index → Add lifecycle policy. |
| packages/anduril_lattice/_dev/build/docs/README.md | 81 | Elastic.MenuArrowsBold | Use '→' to separate menu items, not '' or '='. Example: Select Manage index → Add lifecycle policy. |
| packages/anduril_lattice/data_stream/entity/fields/fields.yml | 220 | Elastic.Latinisms | Latin terms and abbreviations are a common source of confusion. Use 'for example' instead of 'e.g'. |
| packages/anduril_lattice/data_stream/entity/fields/fields.yml | 220 | Elastic.QuotesPunctuation | Place punctuation inside closing quotation marks. |
| packages/anduril_lattice/data_stream/entity/fields/fields.yml | 422 | Elastic.Latinisms | Latin terms and abbreviations are a common source of confusion. Use 'for example' instead of 'e.g'. |
| packages/anduril_lattice/data_stream/entity/fields/fields.yml | 539 | Elastic.Latinisms | Latin terms and abbreviations are a common source of confusion. Use 'for example' instead of 'e.g'. |
| packages/anduril_lattice/data_stream/entity/fields/fields.yml | 556 | Elastic.Latinisms | Latin terms and abbreviations are a common source of confusion. Use 'for example' instead of 'e.g'. |
| packages/anduril_lattice/data_stream/entity/fields/fields.yml | 572 | Elastic.Latinisms | Latin terms and abbreviations are a common source of confusion. Use 'for example' instead of 'e.g'. |
| packages/anduril_lattice/data_stream/entity/fields/fields.yml | 653 | Elastic.Latinisms | Latin terms and abbreviations are a common source of confusion. Use 'for example' instead of 'e.g'. |
| packages/anduril_lattice/data_stream/entity/fields/fields.yml | 653 | Elastic.QuotesPunctuation | Place punctuation inside closing quotation marks. |
| packages/anduril_lattice/data_stream/entity/manifest.yml | 45 | Elastic.Latinisms | Latin terms and abbreviations are a common source of confusion. Use 'and so on' instead of 'etc'. |
| packages/anduril_lattice/manifest.yml | 48 | Elastic.Latinisms | Latin terms and abbreviations are a common source of confusion. Use 'for example' instead of 'e.g'. |
💡 Suggestions (2): Optional style improvements. Apply when helpful.
| File | Line | Rule | Message |
|---|---|---|---|
| packages/anduril_lattice/_dev/build/docs/README.md | 97 | Elastic.WordChoice | Consider using 'can, might' instead of 'may', unless the term is in the UI. |
| packages/anduril_lattice/changelog.yml | 1 | Elastic.Versions | Use 'later versions' instead of 'newer versions' when referring to versions. |
The Vale linter checks documentation changes against the Elastic Docs style guide. To use Vale locally or report issues, refer to Elastic style guide for Vale.
This comment has been minimized.
This comment has been minimized.
TL;DRBuildkite build Remediation
Investigation detailsRoot CauseThe actionable failure line is missing from the available Buildkite log, but the failed build is stale relative to the current PR head:
Evidence
Verification
Follow-upIf Buildkite still fails on What is this? | From workflow: PR Buildkite Detective Give us feedback! React with 🚀 if perfect, 👍 if helpful, 👎 if not. |
|
✅ All changelog entries have the correct PR link. |
🚀 Benchmarks reportTo see the full report comment with |
💚 Build Succeeded
History
|
teresaromero
left a comment
There was a problem hiding this comment.
for Vale linting fixes you van use the skill on this repository for the agents to update the readmes according to the elastic Vale style
| - src: /img/entity-dashboard-1.png | ||
| title: Sample screenshot | ||
| size: 600x600 | ||
| type: image/png | ||
| - src: /img/entity-dashboard-2.png | ||
| title: Sample screenshot | ||
| size: 600x600 | ||
| type: image/png | ||
| - src: /img/entity-dashboard-3.png | ||
| title: Sample screenshot | ||
| size: 600x600 | ||
| type: image/png |
There was a problem hiding this comment.
nit: can we rename the titles to be aligned with the content of the screenshot?
There was a problem hiding this comment.
the dashboard wasn't run through elastic-package format (differs from canonical indentation), and still carries a live accessControl.owner Kibana user ID from the export.
| @@ -0,0 +1,3 @@ | |||
| dependencies: | |||
| ecs: | |||
| reference: "git@v9.3.0" | |||
There was a problem hiding this comment.
perhaps you could use 9.4.0
| - set: | ||
| field: ecs.version | ||
| tag: set_ecs_version | ||
| value: '9.3.0' |
There was a problem hiding this comment.
if updating the ecs version, this should probably be updated too
| resource.timeout: {{http_client_timeout}} | ||
| {{/if}} | ||
| resource.url: {{url}} | ||
| state: |
There was a problem hiding this comment.
The manifest/README claim OAuth2 tokens are auto-refreshed with a 30-minute lifetime, but the program never actually caches one: the state.?client_id check on line 29 only picks the auth mode (OAuth2 vs. static token), and the fetched auth.token is never written back into state (the state.with(...) returns on lines 56/69 only set events/cursor/want_more). So every poll re-authenticates from scratch — at the default 5s interval, ~720 token exchanges/hour instead of one per 30 minutes.
Per the Filebeat CEL input docs (https://www.elastic.co/guide/en/beats/filebeat/current/filebeat-input-cel.html), plain state fields persist across poll intervals for the life of the input, so caching is safe here. packages/cyera/data_stream/datastore/agent/stream/cel.yml.hbs (https://github.com/elastic/integrations/blob/main/packages/cyera/data_stream/datastore/agent/stream/cel.yml.hbs) already does this via has(state.?next.expiry) && timestamp(state.next.expiry) > now, reusing state.next.access_token when still valid. Worth the same pattern here.
Proposed commit message
Adds a new integration for the Anduril Lattice Common Operational Picture API. Collects entity lifecycle events (tracks, assets, geospatial zones, signals) via long-poll REST API with OAuth2 and static bearer token auth.
Checklist
changelog.ymlfile.Author's Checklist
How to test this PR locally
Need a developer account with Anduril to test
Screenshots